From ca4ec52c5403139f2f0c78966e1ad4272153c875 Mon Sep 17 00:00:00 2001 From: Daniel Boles Date: Fri, 29 Jun 2018 19:57:06 +0100 Subject: [PATCH] defaultvalue: Fix some very broken indentation and while here, use the more typical : to separate the type and property --- testsuite/gtk/defaultvalue.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/testsuite/gtk/defaultvalue.c b/testsuite/gtk/defaultvalue.c index 1f73fa5825..e0e28a485c 100644 --- a/testsuite/gtk/defaultvalue.c +++ b/testsuite/gtk/defaultvalue.c @@ -363,9 +363,12 @@ G_GNUC_END_IGNORE_DEPRECATIONS continue; if (g_test_verbose ()) - g_print ("Property %s.%s\n", - g_type_name (pspec->owner_type), - pspec->name); + { + g_print ("Property %s:%s\n", + g_type_name (pspec->owner_type), + pspec->name); + } + g_value_init (&value, G_PARAM_SPEC_VALUE_TYPE (pspec)); g_object_get_property (instance, pspec->name, &value); check_property ("Property", pspec, &value); -- 2.30.2